home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene Storm
/
Scene Storm - Volume 1.iso
/
coding
/
c
/
unix
/
src
/
gethostname.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-08-16
|
156 b
|
12 lines
#include "amiga.h"
#include <unistd.h>
extern char *_system_name;
int gethostname(char *buf, int len)
{
strncpy(buf, _system_name, len);
return 0;
}